new Column(
children: <Widget>[
new Expanded(
child: horizontalList,
)
],
);
Column(
children: <Widget>[
Expanded( // <-- Use Expanded
child: ListView(...),
)
],
)
Column(
children: <Widget>[
Expanded( // <-- Use Expanded
child: ListView(...),
)
],
)